home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / Include / sun4.md / machInt.h < prev    next >
C/C++ Source or Header  |  1989-07-12  |  983b  |  32 lines

  1. /*
  2.  * machInt.h --
  3.  *
  4.  *    This file defines things that are shared between the "mach" modules
  5.  *    but aren't used by the rest of Sprite.
  6.  *
  7.  * Copyright 1988 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /sprite/src/kernel/mach/sun4.md/RCS/machInt.h,v 1.3 89/07/12 06:19:36 rab Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _MACHINT
  20. #define _MACHINT
  21.  
  22. /*
  23.  * The bounds of the code that copies arguments from the user stack to
  24.  * the kernel stack.
  25.  */
  26. extern int MachFetchArgs();
  27. extern int MachFetchArgsEnd();
  28. extern Address Mach_ProbeStart;
  29. extern Address Mach_ProbeEnd;
  30.  
  31. #endif /* _MACHINT */
  32.